home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 May: Tool Chest / Developer CD Series Tool Chest (Apple Computer)(May 1999).iso / Tool Chest / Communications Toolbox / CTB Development Resources / Simple FT Tool / Simon Tool / Load.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-05-10  |  3.7 KB  |  238 lines  |  [TEXT/MPS ]

  1. /************************************************************************************
  2.                                   P R O J E C T   I N F O
  3. *************************************************************************************
  4.   
  5.     Project Name:    Spectre
  6.        File Name:    Load.c
  7.   
  8.      Description:    For #include'ing all the standard stuff at once.
  9.   
  10.                           Copyright © 1992 Apple Computer, Inc.
  11.                           All rights reserved.
  12.   
  13. *************************************************************************************
  14.                               A U T H O R   I D E N T I T Y
  15. *************************************************************************************
  16.   
  17.       Initials    Name
  18.       --------    -----------------------------------------------
  19.       CH            Craig Hotchkiss
  20.   
  21. *************************************************************************************
  22.                               R E V I S I O N   H I S T O R Y
  23. *************************************************************************************
  24.  
  25.     Change History (most recent first):
  26.  
  27.          <0>      5/8/92    CH        Creation date
  28.  
  29. ************************************************************************************/
  30.  
  31.  
  32.  
  33. #ifndef __ALIASES__
  34.     #include     <Aliases.h>
  35. #endif
  36.  
  37. #ifndef __APPLEEVENTS__
  38.     #include     <AppleEvents.h>
  39. #endif
  40.  
  41. #ifndef __APPLETALK__
  42.     #include     <AppleTalk.h>
  43. #endif
  44.  
  45. #ifndef __ASSERT__
  46.     #include     <Assert.h>
  47. #endif
  48.  
  49. #ifndef __COMMRESOURCES__
  50.     #include     <CommResources.h>
  51. #endif
  52.  
  53. #ifndef __CONNECTIONS__
  54.     #include     <Connections.h>
  55. #endif
  56.  
  57. #ifndef __CURSORCTL__
  58.     #include     <CursorCtl.h>
  59. #endif
  60.  
  61. #ifndef __DESK__
  62.     #include     <Desk.h>
  63. #endif
  64.  
  65. #ifndef __DEVICES__
  66.     #include     <Devices.h>
  67. #endif
  68.  
  69. #ifndef __DIALOGS__
  70.     #include     <Dialogs.h>
  71. #endif
  72.  
  73. #ifndef __DISKINIT__
  74.     #include     <DiskInit.h>
  75. #endif
  76.  
  77. #ifndef __ERRMGR__
  78.     #include     <ErrMgr.h>
  79. #endif
  80.  
  81. #ifndef __ERRORS__
  82.     #include     <Errors.h>
  83. #endif
  84.  
  85. #ifndef __EVENTS__
  86.     #include     <Events.h>
  87. #endif
  88.  
  89. #ifndef __FCNTL__
  90.     #include     <FCntl.h>
  91. #endif
  92.  
  93. #ifndef __FILES__
  94.     #include     <Files.h>
  95. #endif
  96.  
  97. #ifndef __FILETRANSFERS__
  98.     #include     <FileTransfers.h>
  99. #endif
  100.  
  101. #ifndef __FILETRANSFERTOOLS__
  102.     #include     <FileTransferTools.h>
  103. #endif
  104.  
  105. #ifndef __FOLDERS__
  106.     #include     <Folders.h>
  107. #endif
  108.  
  109. #ifndef __FONTS__
  110.     #include     <Fonts.h>
  111. #endif
  112.  
  113. #ifndef __GESTALTEQU__
  114.     #include     <GestaltEqu.h>
  115. #endif
  116.  
  117. #ifndef __LANGUAGE__
  118.     #include     <Language.h>
  119. #endif
  120.  
  121. #ifndef __LIMITS__
  122.     #include     <Limits.h>
  123. #endif
  124.  
  125. #ifndef __LISTS__
  126.     #include     <Lists.h>
  127. #endif
  128.  
  129. #ifndef __MEMORY__
  130.     #include     <Memory.h>
  131. #endif
  132.  
  133. #ifndef __MENUS__
  134.     #include     <Menus.h>
  135. #endif
  136.  
  137. #ifndef __OSEVENTS__
  138.     #include     <OSEvents.h>
  139. #endif
  140.  
  141. #ifndef __OSUTILS__
  142.     #include     <OSUtils.h>
  143. #endif
  144.  
  145. #ifndef __PACKAGES__
  146.     #include     <Packages.h>
  147. #endif
  148.  
  149. #ifndef __PRINTING__
  150.     #include     <Printing.h>
  151. #endif
  152.  
  153. #ifndef __QUICKDRAW__
  154.     #include     <QuickDraw.h>
  155. #endif
  156.  
  157. #ifndef __RESOURCES__
  158.     #include     <Resources.h>
  159. #endif
  160.  
  161. #ifndef __SCRAP__
  162.     #include     <Scrap.h>
  163. #endif
  164.  
  165. #ifndef __SCRIPT__
  166.     #include     <Script.h>
  167. #endif
  168.  
  169. #ifndef __SHUTDOWN__
  170.     #include     <Shutdown.h>
  171. #endif
  172.  
  173. #ifndef __START__
  174.     #include     <Start.h>
  175. #endif
  176.  
  177. #ifndef __STDDEF__
  178.     #include     <StdDef.h>
  179. #endif
  180.  
  181. #ifndef __STDIO__
  182.     #include     <StdIO.h>
  183. #endif
  184.  
  185. #ifndef __STDLIB__
  186.     #include     <StdLib.h>
  187. #endif
  188.  
  189. #ifndef __STRING__
  190.     #include     <String.h>
  191. #endif
  192.  
  193. #ifndef __STRINGS__
  194.     #include     <Strings.h>
  195. #endif
  196.  
  197. #ifndef __SYSEQU__
  198.     #include     <SysEqu.h>
  199. #endif
  200.  
  201. #ifndef __TERMINALS__
  202.     #include     <Terminals.h>
  203. #endif
  204.  
  205. #ifndef __TEXTEDIT__
  206.     #include     <TextEdit.h>
  207. #endif
  208.  
  209. #ifndef __TIMER__
  210.     #include     <Timer.h>
  211. #endif
  212.  
  213. #ifndef __TOOLUTILS__
  214.     #include     <ToolUtils.h>
  215. #endif
  216.  
  217. #ifndef __TRAPS__
  218.     #include     <Traps.h>
  219. #endif
  220.  
  221. #ifndef __TYPES__
  222.     #include     <Types.h>
  223. #endif
  224.  
  225. #ifndef __VALUES__
  226.     #include     <Values.h>
  227. #endif
  228.  
  229. #ifndef __WINDOWS__
  230.     #include     <Windows.h>
  231. #endif
  232.  
  233.  
  234.  
  235. #if DoNotDump == 0
  236.     #pragma     dump         __DUMP__    
  237. #endif
  238.